projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08ae913
)
Add declaration for atof if not predefined.
author
Brian Fox
<bfox@gnu.org>
Wed, 22 Sep 1993 18:32:09 +0000
(18:32 +0000)
committer
Brian Fox
<bfox@gnu.org>
Wed, 22 Sep 1993 18:32:09 +0000
(18:32 +0000)
src/data.c
patch
|
blob
|
history
diff --git
a/src/data.c
b/src/data.c
index a3d2f46013b20a755b9e45142e3bd2ab8ac29261..9b42d83d09b3995d27749ebf18b03382af2f78bc 100644
(file)
--- a/
src/data.c
+++ b/
src/data.c
@@
-37,6
+37,10
@@
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <math.h>
#endif /* LISP_FLOAT_TYPE */
+#if !defined (atof)
+extern double atof ();
+#endif /* !atof */
+
Lisp_Object Qnil, Qt, Qquote, Qlambda, Qsubr, Qunbound;
Lisp_Object Qerror_conditions, Qerror_message, Qtop_level;
Lisp_Object Qerror, Qquit, Qwrong_type_argument, Qargs_out_of_range;